home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Atari Compendium
/
The Atari Compendium (Toad Computers) (1994).iso
/
files
/
prgtools
/
gnustuff
/
minix
/
update~4.z
/
update~4
/
lib_stdio_fgetc.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1989-09-06
|
377 b
|
25 lines
/* f g e t c
*
* This is the getc() macro wrapped inside a function. This behaves
* similarly to getc() but runs more slowly. It takes up less
* space per invocation and its name can be passed as an argument
* to other functions.
*
* Patchlevel 1.0
*
* Edit History:
*/
#include "stdiolib.h"
/*LINTLIBRARY*/
int fgetc(iop)
FILE *iop;
{
return getc(iop);
}